home *** CD-ROM | disk | FTP | other *** search
/ Freelog 115 / FreelogNo115-MaiJuin2013.iso / Internet / Filezilla Server / FileZilla_Server-0_9_41.exe / source / interface / FileZilla server.h < prev    next >
C/C++ Source or Header  |  2011-11-06  |  2KB  |  72 lines

  1. // FileZilla Server - a Windows ftp server
  2.  
  3. // Copyright (C) 2002-2004 - Tim Kosse <tim.kosse@gmx.de>
  4.  
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9.  
  10. // This program is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. // GNU General Public License for more details.
  14.  
  15. // You should have received a copy of the GNU General Public License
  16. // along with this program; if not, write to the Free Software
  17. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18.  
  19. // FileZilla server.h : Haupt-Header-Datei fⁿr die Anwendung FILEZILLA SERVER
  20. //
  21.  
  22. #if !defined(AFX_FILEZILLASERVER_H__C194BBC7_86B4_4F82_9380_4B7AE11543B0__INCLUDED_)
  23. #define AFX_FILEZILLASERVER_H__C194BBC7_86B4_4F82_9380_4B7AE11543B0__INCLUDED_
  24.  
  25. #if _MSC_VER > 1000
  26. #pragma once
  27. #endif // _MSC_VER > 1000
  28.  
  29. #ifndef __AFXWIN_H__
  30.     #error include 'stdafx.h' before including this file for PCH
  31. #endif
  32.  
  33. #include "resource.h"       // Hauptsymbole
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CFileZillaserverApp:
  37. // Siehe FileZilla server.cpp fⁿr die Implementierung dieser Klasse
  38. //
  39.  
  40. class CFileZillaserverApp : public CWinApp
  41. {
  42. public:
  43.     CFileZillaserverApp();
  44.     ~CFileZillaserverApp();
  45.  
  46. // ▄berladungen
  47.     // Vom Klassenassistenten generierte ▄berladungen virtueller Funktionen
  48.     //{{AFX_VIRTUAL(CFileZillaserverApp)
  49.     public:
  50.     virtual BOOL InitInstance();
  51.     virtual int ExitInstance();
  52.     //}}AFX_VIRTUAL
  53.  
  54. // Implementierung
  55.  
  56. public:
  57.     //{{AFX_MSG(CFileZillaserverApp)
  58.     afx_msg void OnAppAbout();
  59.         // HINWEIS - An dieser Stelle werden Member-Funktionen vom Klassen-Assistenten eingefⁿgt und entfernt.
  60.         //    Innerhalb dieser generierten Quelltextabschnitte NICHTS VER─NDERN!
  61.     //}}AFX_MSG
  62.     DECLARE_MESSAGE_MAP()
  63. };
  64.  
  65.  
  66. /////////////////////////////////////////////////////////////////////////////
  67.  
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Visual C++ fⁿgt unmittelbar vor der vorhergehenden Zeile zusΣtzliche Deklarationen ein.
  70.  
  71. #endif // !defined(AFX_FILEZILLASERVER_H__C194BBC7_86B4_4F82_9380_4B7AE11543B0__INCLUDED_)
  72.